翻訳と辞書
Words near each other
・ Paramotor Napedy Paralotniowe
・ Paramotor Performance
・ Paramotor Performance M3
・ Paramoudra
・ Paramount
・ Paramount (Shanghai)
・ Paramount Aircraft Corporation
・ Paramount Airlines
・ Paramount Airways
・ Paramount Airways Limited
・ Parametric family
・ Parametric insurance
・ Parametric Landscapes
・ Parametric model
・ Parametric oscillator
Parametric polymorphism
・ Parametric process (optics)
・ Parametric programming
・ Parametric statistics
・ Parametric Stereo
・ Parametric surface
・ Parametricism
・ Parametricity
・ Parametriocnemus
・ Parametriotinae
・ Parametritis
・ Parametrium
・ Parametrix
・ Parametrization
・ Parametrization (atmospheric modeling)


Dictionary Lists
翻訳と辞書 辞書検索 [ 開発暫定版 ]
スポンサード リンク

Parametric polymorphism : ウィキペディア英語版
Parametric polymorphism

In programming languages and type theory, parametric polymorphism is a way to make a language more expressive, while still maintaining full static type-safety. Using parametric polymorphism, a function or a data type can be written generically so that it can handle values ''identically'' without depending on their type. Such functions and data types are called generic functions and generic datatypes respectively and form the basis of generic programming.
For example, a function append that joins two lists can be constructed so that it does not care about the type of elements: it can append lists of integers, lists of real numbers, lists of strings, and so on. Let the ''type variable a'' denote the type of elements in the lists. Then append can be typed forall a. () × () -> (), where () denotes the type of lists with elements of type ''a''. We say that the type of append is ''parameterized by a'' for all values of ''a''. (Note that since there is only one type variable, the function cannot be applied to just any pair of lists: the pair, as well as the result list, must consist of the same type of elements.) For each place where append is applied, a value is decided for ''a''.
Following Christopher Strachey, parametric polymorphism may be contrasted with ad hoc polymorphism, in which a single polymorphic function can have a number of distinct and potentially heterogeneous implementations depending on the type of argument(s) to which it is applied. Thus, ad hoc polymorphism can generally only support a limited number of such distinct types, since a separate implementation has to be provided for each type.
== History ==
Parametric polymorphism was first introduced to programming languages in ML in 1975.〔Milner, R., Morris, L., Newey, M. "A Logic for Computable Functions with reflexive and polymorphic types", Proc. Conference on Proving and Improving Programs, Arc-et-Senans (1975)〕 Today it exists in Standard ML, OCaml, F#, Ada, Haskell, Mercury, Visual Prolog, Scala, Julia, and others. Java, C#, Visual Basic .NET and Delphi have each introduced "generics" for parametric polymorphism. Some implementations of type polymorphism are superficially similar to parametric polymorphism while also introducing ad hoc aspects. One example is C++ template specialization.
The most general form of polymorphism is "higher-rank impredicative polymorphism". Two popular restrictions of this form are restricted rank polymorphism (for example, rank-1 or ''prenex'' polymorphism) and predicative polymorphism. Together, these restrictions give "predicative prenex polymorphism", which is essentially the form of polymorphism found in ML and early versions of Haskell.

抄文引用元・出典: フリー百科事典『 ウィキペディア(Wikipedia)
ウィキペディアで「Parametric polymorphism」の詳細全文を読む



スポンサード リンク
翻訳と辞書 : 翻訳のためのインターネットリソース

Copyright(C) kotoba.ne.jp 1997-2016. All Rights Reserved.